-
Notifications
You must be signed in to change notification settings - Fork 919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkp/pkp-lib#4787 Reviewer suggestions #4459
base: main
Are you sure you want to change the base?
Conversation
42165fe
to
1bd3b67
Compare
f99fdd0
to
b167584
Compare
1a222c6
to
4beceee
Compare
<?php | ||
|
||
/** | ||
* @file classes/migration/upgrade/v3_5_0/I4787_ReviewSuggestions.php | ||
* | ||
* Copyright (c) 2024 Simon Fraser University | ||
* Copyright (c) 2024 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @class I4787_ReviewSuggestions.php | ||
* | ||
* @brief Add reviewer suggestion related tables | ||
* | ||
*/ | ||
|
||
namespace APP\migration\upgrade\v3_5_0; | ||
|
||
class I4787_ReviewSuggestions extends \PKP\migration\upgrade\v3_5_0\I4787_ReviewSuggestions | ||
{ | ||
protected string $CONTEXT_TABLE = 'journals'; | ||
protected string $CONTEXT_SETTINGS_TABLE = 'journal_settings'; | ||
protected string $CONTEXT_COLUMN = 'journal_id'; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably go to a v3_6_0
folder .
dbscripts/xml/install.xml
Outdated
@@ -39,6 +39,7 @@ | |||
<migration class="PKP\migration\install\TombstoneMigration" /> | |||
<migration class="PKP\migration\install\DoiMigration" /> | |||
<migration class="PKP\migration\install\InstitutionsMigration" /> | |||
<migration class="PKP\migration\install\ReviewerSuggestionsMigration" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For now , this is only a place holder as this should be a part of 3.6.0
upgrade process .
fe6d370
to
9cc4bde
Compare
e6caceb
to
360a095
Compare
3e3e2a5
to
bc26428
Compare
…sting suggestion
b1cd5ea
to
e8fc6e7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks @touhidurabir! Only some wording comments for this one.
msgstr "Reviewer Suggestion at Submission" | ||
|
||
msgid "manager.setup.reviewOptions.reviewerSuggestionEnabled.description" | ||
msgstr "Author can suggest few potntial reviewers before completing the submission which can streamline the review process and provide valuable input for editorial team." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A spelling error here:
"potntial" => "potential"
Is there a limit on the potential reviewers that can be suggested? if not, why we are writing "few" here?
This comment can apply to default.submission.step.reviewerSuggestions
in pkp-lib PR also were we state "the option to suggest 2/3 potential reviewers".
i understand that this is a "suggestion" to the author, but, maybe, the wording should be reconsidered
msgstr "Author can suggest few potntial reviewers before completing the submission which can streamline the review process and provide valuable input for editorial team." | ||
|
||
msgid "manager.setup.reviewOptions.reviewerSuggestionEnabled.label" | ||
msgstr "Allow authors to suggest potential reviews at submission process" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"potential reviews" => "potential reviewers" perhaps, to be more clear?
for pkp/pkp-lib#4787